-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support to export output to csv, json or HTML #29
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tacgomes
force-pushed
the
output-format
branch
from
December 5, 2024 19:12
ca942ed
to
e5bca0c
Compare
tacgomes
force-pushed
the
output-format
branch
from
December 5, 2024 19:15
e5bca0c
to
3cc2b67
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅ ❗ Your organization needs to install the Codecov GitHub app to enable full functionality.
|
tacgomes
force-pushed
the
output-format
branch
from
December 5, 2024 19:59
3cc2b67
to
6328e0e
Compare
tacgomes
force-pushed
the
output-format
branch
from
December 7, 2024 12:03
6328e0e
to
0274fea
Compare
tacgomes
force-pushed
the
output-format
branch
from
December 8, 2024 16:09
0274fea
to
60e44f7
Compare
tacgomes
force-pushed
the
output-format
branch
from
December 9, 2024 17:48
60e44f7
to
9b370a0
Compare
Split lines before comparing captured output against expected output. On Microsoft Windows, the CSV output will use "\r\n" as line separator, which is different than the "\n" stored in the files containing the expected output. By using `.splitlines()` the platform-dependent line separators are removed and the content can be compared for equality independently of in which platform was produced.
Improve the hidden fields functionality by passing the list of hidden fields in the constructor instead of requiring a separate method for that effect.
Add support for showing totals for certain fields to the PrettyTable class and update codebase to use the new feature.
tacgomes
force-pushed
the
output-format
branch
from
December 12, 2024 15:14
9b370a0
to
5e5ff67
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add support to export output to csv, json or HTML. Closes #15.